From: Richard M. Stallman Date: Mon, 10 Jun 1996 21:04:09 +0000 (+0000) Subject: (choose_minibuf_frame): Eliminate MSDOS-non-MULTI_FRAME conditional. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~83682 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=4d8cb748b89f792267b81034e1e061d58df6c0b1;p=emacs.git (choose_minibuf_frame): Eliminate MSDOS-non-MULTI_FRAME conditional. --- diff --git a/src/minibuf.c b/src/minibuf.c index 13ec570e66b..d0e86ea3195 100644 --- a/src/minibuf.c +++ b/src/minibuf.c @@ -113,9 +113,6 @@ choose_minibuf_frame () if (selected_frame != 0 && !EQ (minibuf_window, selected_frame->minibuffer_window)) { -#if defined(MSDOS) && !defined(HAVE_X_WINDOWS) && !defined(MULTI_FRAME) - selected_frame->minibuffer_window = minibuf_window; -#else /* I don't think that any frames may validly have a null minibuffer window anymore. */ if (NILP (selected_frame->minibuffer_window)) @@ -124,7 +121,6 @@ choose_minibuf_frame () Fset_window_buffer (selected_frame->minibuffer_window, XWINDOW (minibuf_window)->buffer); minibuf_window = selected_frame->minibuffer_window; -#endif } }